html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: Arial, sans-serif;
  background-color: #F4E1E0; /* Blush */
  color: #0E1627;           /* Navy */
}

main {
  flex: 1;
}

header {
  padding: 40px 20px;
  background-color: #0E1627; /* Navy */
  text-align: center;
}

.logo img {
  width: 80px;
  margin-bottom: 10px;
}

nav {
  margin-top: 10px;
}

.navigation {
  display: flex;
  justify-content: center;
  gap: 10px;
  list-style: none;
  font-family: Didot, serif;
  background: transparent;
  padding: 0;
}

.navigation a {
  padding: 12px 20px;
  color: #F4E1E0; /* Blush */
  text-decoration: none;
  border-radius: 20px;
  transition: background 0.3s;
}

.navigation a:hover,
#akt_tab {
  background-color: #BD8E89; /* Mauve */
  color: #0E1627;            /* Navy */
}

.container {
  display: flex;
  flex-direction: column;
  gap: 3px;
  width: 60%;
  margin: 40px auto;
  font-family: Didot, serif;
}

.container h2 {
  text-align: center;
}

.box {
  background-color: #7F6269;
  padding: 17px 22px;
  border-radius: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  box-shadow: 2px 2px 6px rgba(0,0,0,0.1);
}

.box:hover {
  transform: scale(1.05);
  box-shadow: 4px 4px 12px rgba(0,0,0,0.2);
}

.emoji {
  margin-right: 10px;
}

section {
  padding: 80px 20px;
  background: #F4E1E0;
  text-align: center;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.animation {
  position: relative;
  height: 25em;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #E5C5C1; /* Pink */
}

.slideshow {
  display: flex;
  gap: 15px;
  animation: slideShow 95s linear infinite;
  width: max-content;
}

.slideshow img {
  width: 250px;
  height: 350px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  opacity: 0.8;
  transition: transform 0.5s;
  z-index: 1;
}

.slideshow img:hover {
  transform: scale(1.05);
  opacity: 1;
  z-index: 2;
}

@keyframes slideShow {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.überlagerung-text {
  position: absolute;
  z-index: 10;
  color: #0E1627; /* Navy */
  font-family: Didot, serif;
  text-align: center;
  text-shadow: 4px 4px 6px #7f6269;
}

.überlagerung-text h1 {
  font-size: 3rem;
  margin: 0;
}

.überlagerung-text a.button {
  margin-top: 20px;
  display: inline-block;
  padding: 12px 28px;
  border-radius: 20px;
  background-color: rgba(14, 22, 39, 0.7); 
  color: #F4E1E0;
  text-decoration: none;
  transition: background 0.3s;
}

.überlagerung-text a.button:hover {
  background: #BD8E89;
  color: #FFF;
}

.site-footer {
  background-color: #0E1627;
  color: #F4E1E0;
  text-align: center;
  padding: 60px 20px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

.footer-logo img {
  width: 80px;
}

.footer-logo p {
  margin: 10px 0 0;
  color: #E5C5C1;
  font-size: 1rem;
}

.footer-info p {
  margin: 5px 0;
  font-size: 0.95rem;
}

.footer-info a {
  color: #BD8E89;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-info a:hover {
  color: #E5C5C1;
}

.footer-bottom {
  border-top: 1px solid #7F6269;
  padding-top: 20px;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.85rem;
  color: #E5C5C1;
}

.Tabelle {
  text-align: center;
  margin-bottom: 0;
}

.Tabelle h2 {
  font-size: 36px;
  font-family: Didot;
  margin-bottom: 40px;
  color: #7F6269;
}

.Tabelle .box {
  background: #fff0f5;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(127, 98, 105, 0.2);
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 900px;
  margin: 0 auto;
}

.Tabelle .box:hover {
  transform: scale(1.02);
  box-shadow: 0 0 40px rgba(127, 98, 105, 0.4);
}

table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff6fa;
  border-radius: 15px;
  overflow: hidden;
}

th, td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid #E5C5C1;
  font-family: Didot;
}

tr:hover {
  background-color: #7F6269;
  transition: background-color 0.3s;
}

th {
  background-color: #7F6269;
  font-weight: normal;
  width: 30%;
}

.tagline {
  background: #7F6269;
  color: #F4E1E0;
  font-family: Didot, serif;
}

.tagline .quote {
  font-size: 2rem;
  margin-bottom: 10px;
  font-style: italic;
}

.tagline .author {
  font-size: 1rem;
  color: #E5C5C1;
}
